home *** CD-ROM | disk | FTP | other *** search
/ The Games Machine 76 / XENIATGM66.iso / Indiana Jones / Indiana Jones.exe / RESOURCE / PREVIEW.GOB / cog_actor_aivehicle.cog < prev    next >
Text File  |  1999-11-15  |  730b  |  38 lines

  1. # ===================================================================
  2. # Jones 3D Cog Script
  3. #
  4. # actor_AIVehicle.cog
  5. #
  6. # [RandyT]
  7. #
  8. # Actor script for truck and minecar commie with a submachine gun.
  9. #
  10. # (C) 1998 LucasArts Entertainment Company LLC. All Rights Reserved
  11. # ===================================================================
  12.  
  13. symbols
  14.  
  15. message        created
  16.  
  17. thing        bandito            local
  18.  
  19. int            weaponNum=23    local
  20.  
  21. end
  22.  
  23. # ===================================================================
  24. code
  25.  
  26. # -------------------------------------------------------------------
  27. created:
  28.  
  29.     bandito = GetSenderRef();
  30.  
  31.     SetWeaponModel(bandito, weaponNum);
  32.     SelectWeapon(bandito, weaponNum);
  33.  
  34.     return;
  35.  
  36. end
  37.  
  38.